Skip to main content

An Odd Issue

So one day my docs-technical route stopped working (and all child routes)... this was very confusing because I hadn't changed anything.

First I tried npm run clear (docusaurus clear cache)

Then I checked http://localhost:3000/__docusaurus/debug and all the routes in docs-technical appeared... (but of course they weren't working).

Then I literally just renamed the folder to technical (and updated the plugin in docusaurus config)

      {
id: 'docs-t',
path: 'technical',
routeBasePath: 'technical',
sidebarPath: require.resolve('./sidebar-technical.js'),
}

and apprently that fixed it :S